home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ADA Programming Guide
/
ADA Programming Guide.iso
/
ada_gwu
/
adaed
/
spider
/
draw17.ada
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-01-30
|
304 b
|
24 lines
WITH Spider; USE Spider;
WITH Left;
PROCEDURE Drawing17 IS
BEGIN -- Begin the drawing
Reset;
Left; -- new command used here
Step;
Step;
Left; -- and here
Red;
Step;
Step;
Step;
Left; -- and here too!
Step;
Blue;
Step;
Step;
Step;
Quit;
END Drawing17;